:root{
  --accent: #a8cf2a;         /* الأخضر الأساسي */
  --accent-2: #7fb319;       /* أخضر للهوفر */
  --ink: #0a1415;
  --white: #ffffff;
  --nav-ink: #cfe4cf;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius: 16px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background: #071012;
}

a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

/* Shared section heading (same font + sizes like screenshot) */
.section{
  padding: clamp(90px, 10vw, 170px) 0;
  border-top: 0;
  background: #062a33;
}

.section-head{
  text-align: center;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.section-eyebrow{
  margin: 0;
  color: rgba(168, 207, 42, .92);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
}

.section-title{
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255,255,255,.98);
  font-weight: 900;
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing: .2px;
  line-height: 1.15;
}

/* fine-tune spacing between the two big headings like screenshot */
.section--testimonials{
  padding: clamp(110px, 12vw, 200px) 0 clamp(70px, 8vw, 120px);
}
.section--articles{
  padding: clamp(70px, 8vw, 120px) 0 clamp(120px, 14vw, 240px);
}

.hero{
  position: relative;
  min-height: 100svh;
  background: url("./hero-bg.png") center / cover no-repeat;
  overflow: clip;
}

/* إضاءة داكنة أعلى الهيدر أسفل الناف بار مباشرة */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(11, 25, 65, 0.658) 0%,
      rgba(21, 36, 80, 0.61) 22%,
      rgba(15, 39, 92, 0.3) 45%,
      transparent 75%
    );
  pointer-events:none;
  z-index:0;
}

.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 48px);
  /* افتراضيًا: شفافة فوق الخلفية (بدون لون) */
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0);
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav.is-scrolled{
  /* عند النزول لأسفل: نفس خلفية الصورة الأصلية */
  background: #062a33;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.nav__inner{
  display:flex;
  align-items:center;
  gap: 16px;
  justify-content: space-between;
  direction: ltr; /* keep physical layout like screenshot */
  /* container-fluid: يمتد بعرض الصفحة بالكامل */
  max-width: none;
  width: 100%;
  margin: 0;
}

.nav__actions{
  display:flex;
  align-items:center;
  gap: 14px;
  direction: ltr; /* keep order like screenshot: lock -> button -> mail */
}

.nav__right{
  display:flex;
  align-items:center;
  gap: clamp(10px, 1.8vw, 22px);
}

.icon-btn{
  display:grid;
  place-items:center;
  color: var(--accent);
  transition: transform .18s ease, color .18s ease, background-color .18s ease;
}
.icon-btn svg{ width: 22px; height: 22px; }
.icon-btn:hover{ transform: translateY(-1px); color: #d5ff4b; }
.icon-btn:active{ transform: translateY(0); }

.icon-btn--plain{
  width: 28px;
  height: 28px;
}

.icon-btn--solid{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.icon-btn--solid:hover{
  background: #c7f44a;
  color: #ffffff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  font-weight: 800;
  font-size: 15px;
  direction: rtl; /* keep Arabic shaping */
}
.btn--primary{
  background: var(--accent);
  color: #ffffff;
}
.btn--primary:hover{
  transform: translateY(-1px);
  background: #c7f44a;
  color: #ffffff;
}
.btn--primary:active{ transform: translateY(0); }

.nav__menu{
  display:flex;
  align-items:center;
  gap: clamp(12px, 1.8vw, 22px);
  padding-inline: clamp(6px, 1.2vw, 12px);
}

.nav__link{
  position:relative;
  color: rgba(168, 207, 42, .86);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .1px;
  padding: 12px 6px;
  transition: color .18s ease;
}

.nav__link:hover{
  color: rgba(168, 207, 42, 1);
}

.nav__link--active{
  color: var(--accent);
}
.nav__link--active::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(168,207,42,.22);
}

.nav__lang{
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.nav__flag{
  font-size: 14px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}

/* Language Dropdown */
.nav__lang-dropdown{
  position: relative;
}
.nav__lang-menu{
  min-width: 160px;
  right: 0;
  left: auto;
}
.nav__lang-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(207,228,207,.95);
  transition: background-color .14s ease, color .14s ease, transform .14s ease;
  text-decoration: none;
}
.nav__lang-item:hover{
  background: rgba(168,207,42,.16);
  color: #ffffff;
  transform: translateX(-2px);
}
.nav__lang-item .nav__flag{
  font-size: 16px;
  flex-shrink: 0;
}

/* Dropdown for store: open on hover */
.nav__dropdown{
  position: relative;
}
.nav__dropdown-toggle{
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(168, 207, 42, .86);
  font: inherit;
  outline: none;
  padding-right: 4px; /* مساحة صغيرة قبل السهم */
  transition: color 0.18s ease;
}
.nav__dropdown-toggle:hover{
  color: rgba(168, 207, 42, 1);
}
.nav__dropdown-toggle::after{
  content:"";
  display:inline-block;
  margin-right: 6px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown-toggle:hover::after{
  opacity: 1;
  transform: rotate(45deg) translateY(1px);
}
.nav__dropdown-toggle.nav__link--active{
  color: var(--accent);
}
.nav__dropdown-menu{
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 180px;
  background: rgba(4, 22, 27, 0.98);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  padding: 6px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.nav__dropdown-item{
  display:flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(207,228,207,.95);
  transition: background-color .14s ease, color .14s ease, transform .14s ease;
  gap: 8px;
}
.nav__dropdown-item:hover{
  background: rgba(168,207,42,.16);
  color: #ffffff;
  transform: translateX(-2px);
}
.nav__dropdown-item svg{
  flex-shrink: 0;
  opacity: 0.8;
}
.nav__dropdown:hover .nav__dropdown-menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* User Dropdown */
.nav__user-dropdown{
  position: relative;
}
.nav__user-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0;
}
.nav__user-btn:hover{
  color: var(--accent);
}
.nav__user-menu{
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav__user-menu-item{
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(168, 207, 42, .86);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 4px;
  width: 100%;
  text-align: right;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  gap: 10px;
}
.nav__user-menu-item:hover{
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}
.nav__user-menu-item:last-child{
  margin-bottom: 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__logo{
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.35));
}

/* Burger (mobile) */
.nav__burger{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(168, 207, 42, .45);
  background: rgba(6, 16, 18, .35);
  color: var(--accent);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  padding:0;
  cursor:pointer;
}
.nav__burger:hover{
  border-color: rgba(168, 207, 42, .70);
  background: rgba(9, 20, 22, .55);
  color: #d5ff4b;
}
.nav__burgerLines{
  display:block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
}
.nav__burgerLines::before,
.nav__burgerLines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav__burgerLines::before{ top: -6px; }
.nav__burgerLines::after{ top: 6px; }


.hero__scroll{
  position:absolute;
  right: clamp(14px, 3vw, 42px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 3;
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,.86);
  display:grid;
  place-items:center;
  transition: transform .18s ease, color .18s ease;
}
.hero__scroll:hover{
  transform: translateY(2px);
  color: #ffffff;
}
.hero__scroll svg{ width: 22px; height: 22px; }

.page{
  position:relative;
  /* closer to screenshot section background */
  background: #062a33;
  color: rgba(255,255,255,.9);
}

/* Use on pages that start under fixed nav */
.page--offset{
  padding-top: 110px;
}
.placeholder{
  padding: 54px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.container{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* About page */
.about{
  padding: clamp(34px, 5vw, 72px) 0 clamp(60px, 8vw, 120px);
}
.about__grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  direction: ltr; /* keep media on the left like original */
}
.about__media{
  position: relative;
  min-height: 520px;
}
.about__photo{
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  background-color: rgba(255,255,255,.06);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
  overflow: hidden;
}
.about__photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 400px at 30% 30%, rgba(168,207,42,.16), transparent 60%),
    radial-gradient(800px 400px at 80% 80%, rgba(255,255,255,.10), transparent 60%);
  opacity: .55;
}
.about__photo--a{
  width: min(420px, 86%);
  height: 420px;
  left: 90px;
  top: 0;
  background-image: url("./about-2.webp");
  background-position: 55% 35%;
}
.about__photo--b{
  width: min(440px, 92%);
  height: 440px;
  left: 0;
  top: 170px;
  background-image: url("./about-1.webp");
  background-position: 50% 20%;
}

.about__content{
  position: relative;
  direction: rtl;
}
.about__title{
  margin: 0 0 14px;
  color: rgba(168, 207, 42, .92);
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.2;
}
.about__text{
  color: rgba(255,255,255,.92);
  line-height: 2.05;
  font-size: 15px;
  max-width: 62ch;
}
.about__text p{ margin: 0 0 16px; }
.about__text p:last-child{ margin-bottom: 0; }

.about__contact{
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(168, 207, 42, .80);
  display: grid;
  place-items: center;
  color: var(--accent);
  background: transparent;
  transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
}
.about__contact svg{ width: 22px; height: 22px; }
.about__contact:hover{
  transform: translateY(-1px);
  background: rgba(168, 207, 42, .06);
  border-color: rgba(168, 207, 42, 1);
  color: #d5ff4b;
}
.about__contact:active{ transform: translateY(0); }

/* Podcast page */
.podcasts{
  padding: clamp(60px, 7vw, 110px) 0 clamp(90px, 10vw, 140px);
}

.podcasts__head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.podcasts__icon{
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent);
}
.podcasts__icon svg{ width: 100%; height: 100%; }

.podcasts__title{
  margin: 0 0 10px;
  color: rgba(168, 207, 42, .92);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.25;
}

.podcasts__desc{
  margin: 0 auto;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 2;
  max-width: 92ch;
}

.podcasts__grid{
  margin-top: clamp(26px, 3.8vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
}

.video-card{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  overflow: hidden;
}

.video-card__frame{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: rgba(255,255,255,.06);
}
.video-card__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Articles page (grid like screenshot) */
.posts{
  padding: clamp(40px, 6vw, 90px) 0 clamp(90px, 10vw, 140px);
}

.posts__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
  direction: rtl; /* let the 4th card wrap under the right column */
}

.post-card{
  display: grid;
  gap: 12px;
}

.post-card__media{
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.post-card__mediaPh{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(900px 420px at 30% 20%, rgba(168,207,42,.14), transparent 60%),
    radial-gradient(900px 420px at 80% 80%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.10));
}

.post-card__meta{
  color: rgba(168, 207, 42, .88);
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.post-card__dot{
  color: rgba(168, 207, 42, .88);
}

.post-card__title{
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.9;
}
.post-card__title a{
  color: rgba(168, 207, 42, .92);
  transition: color .18s ease;
}
.post-card__title a:hover{
  color: #d5ff4b;
}

/* Feature cards (section like screenshot) */
.feature-cards{
  padding: clamp(46px, 7vw, 96px) 0;
  border-top: 0;
  background: #062a33;
}

/* Testimonials */
.testimonials{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
  margin-top: clamp(34px, 5vw, 64px);
}

.testimonial-card{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5, 28, 34, .55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.28) inset;
  padding: clamp(18px, 2.4vw, 30px);
}

.testimonial-card__quote{
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 2;
}

.testimonial-card__meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.testimonial-card__sep{ color: rgba(168, 207, 42, .85); }
.testimonial-card__role{ font-weight: 700; color: rgba(255,255,255,.72); }

/* Articles */
.articles{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
  margin-top: clamp(34px, 5vw, 64px);
}

.article-card{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5, 28, 34, .55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.28) inset;
  overflow: hidden;
}

.article-card__media{
  display: block;
  position: relative;
  height: 180px;
  background: rgba(255,255,255,.06);
}

.article-card__mediaPh{
  position:absolute;
  inset: 0;
  background:
    radial-gradient(600px 240px at 30% 30%, rgba(168,207,42,.12), transparent 55%),
    radial-gradient(600px 240px at 80% 80%, rgba(255,255,255,.08), transparent 55%);
}

.article-card__content{
  padding: clamp(16px, 2.2vw, 22px);
}

.article-card__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.6;
}
.article-card__title a{
  color: rgba(255,255,255,.96);
  transition: color .18s ease;
}
.article-card__title a:hover{
  color: #d5ff4b;
}

.article-card__excerpt{
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 2;
}

.article-card__meta{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: 13px;
}
.article-card__dot{ color: rgba(168, 207, 42, .85); }

/* Footer */
.site-footer{
  background: #062a33;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: clamp(54px, 7vw, 92px) 0 26px;
}

.site-footer__grid{
  display:grid;
  /* keep columns order like screenshot (LTR layout inside footer) */
  direction: ltr;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: clamp(26px, 5vw, 86px);
  align-items: start;
}

.site-footer__col{
  /* keep Arabic shaping while grid stays LTR */
  direction: rtl;
}

.site-footer__title{
  margin: 0 0 18px;
  color: rgba(168, 207, 42, .92);
  font-weight: 900;
  font-size: 16px;
}

.site-footer__social{
  display:flex;
  gap: 12px;
  justify-content: center;
}

.social-btn{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(168, 207, 42, .80);
  display:grid;
  place-items:center;
  color: var(--accent);
  background: transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.social-btn svg{ width: 22px; height: 22px; }
.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(168, 207, 42, .06);
  border-color: rgba(168, 207, 42, 1);
  color: #d5ff4b;
}
.social-btn:active{ transform: translateY(0); }

/* Links column (match screenshot: centered title + centered vertical list) */
.site-footer__col--links{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer__col--links .site-footer__title{
  margin-bottom: 24px;
}

.site-footer__links{
  display:flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}

.site-footer__link{
  color: rgba(255,255,255,.90);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.9;
  display: block;
  transition: color .18s ease;
}
.site-footer__link:hover{ color: #d5ff4b; }

.site-footer__brand{
  display:flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  text-align: right;
}

.site-footer__logo{
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.35));
}

.site-footer__about{
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 2.05;
  font-size: 15px;
  max-width: 56ch;
}

.site-footer__bottom{
  margin-top: clamp(28px, 5vw, 54px);
  padding-top: 20px;
  border-top: 1px solid rgba(168, 207, 42, .35);
  text-align: center;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 13px;
  font-family: "Montserrat", "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.back-to-top{
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  display:grid;
  place-items:center;
  background: var(--accent);
  color: #1b2a2a;
  box-shadow: 0 12px 28px rgba(0,0,0,.26);
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
  z-index: 50;
  border-radius: 0;
}
.back-to-top:hover{
  transform: translateY(-1px);
  background: #c7f44a;
}
.back-to-top svg{ width: 20px; height: 20px; }

@media (max-width: 980px){
  .testimonials,
  .articles{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__col--brand{
    grid-column: 1 / -1;
  }
  .site-footer__brand{
    align-items: center;
    text-align: center;
  }
}

.feature-cards__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 54px);
  align-items: stretch;
}

.feature-card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(46px, 5vw, 78px) clamp(28px, 4.2vw, 64px) clamp(70px, 7vw, 110px);
  min-height: clamp(620px, 70vh, 860px);
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  text-align: center;
}

.feature-card::before{ content:none; }

.feature-card__icon{
  position: relative;
  /* match original: icon on the top-right inside the card */
  align-self: flex-start;
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: var(--accent);
}
.feature-card__icon svg{
  width: clamp(48px, 4.2vw, 66px);
  height: clamp(48px, 4.2vw, 66px);
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.25));
}

.feature-card__title{
  position: relative;
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  color: var(--accent);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .1px;
}

.feature-card__body{
  position: relative;
  color: rgba(255,255,255,.92);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 2.05;
  max-width: 54ch;
  margin: 0 auto;
}
.feature-card__body p{
  margin: 0 0 18px;
}
.feature-card__body p:last-child{
  margin-bottom: 0;
}

.feature-card__more{
  position: relative;
  margin-top: auto;
  position: absolute;
  left: clamp(22px, 3vw, 46px);
  bottom: clamp(18px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
  border-radius: 999px;
  border: 0;
  background: transparent;
}
.feature-card__more svg{ width: 26px; height: 26px; }
.feature-card__more:hover{
  transform: translateX(-3px);
  color: #d5ff4b;
}
.feature-card__more:active{ transform: translateX(0); }

/* Responsive */
@media (max-width: 920px){
  .nav__menu{
    position:absolute;
    top: calc(100% + 10px);
    right: clamp(14px, 4vw, 48px);
    left: clamp(14px, 4vw, 48px);
    flex-direction:column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(6, 16, 18, .72);
    border: 1px solid rgba(168, 207, 42, .25);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav__menu.is-open{
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav__link{
    padding: 12px 12px;
    border-radius: 14px;
  }
  .nav__link:hover{
    background: rgba(168, 207, 42, .10);
  }
  .nav__link--active::after{ display:none; }

  .nav__burger{ display:inline-grid; place-items:center; }

  .feature-cards__grid{
    grid-template-columns: 1fr;
  }
  .feature-card{
    min-height: auto;
  }

  .testimonials,
  .articles{
    grid-template-columns: 1fr;
  }

  .site-footer__grid{
    grid-template-columns: 1fr;
  }
  .site-footer__social{
    justify-content: center;
  }
  .site-footer__links{
    align-items: center;
  }

  .page--offset{
    padding-top: 96px;
  }

  .about__grid{
    grid-template-columns: 1fr;
    direction: rtl;
  }
  .about__media{
    min-height: 520px;
  }
  .about__photo--a{
    left: 40px;
  }
  .about__contact{
    position: static;
    margin-top: 18px;
  }

  .podcasts__grid{
    grid-template-columns: 1fr;
  }

  .posts__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .brand__logo{ width: 56px; height: 56px; }
  .btn--primary{ padding: 0 14px; }
  .nav__actions{ gap: 10px; }

  .feature-card{
    padding: 20px 18px;
  }
  .feature-card__title{
    margin: 14px 0 10px;
  }

  .section-title{
    font-size: clamp(28px, 9vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}

/* Product Free Lessons Section */
.product-free-lessons{
  padding: clamp(60px, 8vw, 120px) 0;
  background: rgba(5, 28, 34, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lessons-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: clamp(40px, 6vw, 60px);
}

.lesson-card{
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 28, 34, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.lesson-card a.lesson-card__play-btn{
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 10;
  position: relative;
}

.lesson-card__link{
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.lesson-card:hover{
  transform: translateY(-4px);
  border-color: rgba(168, 207, 42, 0.3);
  box-shadow: 0 8px 24px rgba(168, 207, 42, 0.1);
}

.lesson-card__image{
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.lesson-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lesson-card__image--video{
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 207, 42, 0.1), rgba(168, 207, 42, 0.05));
  color: rgba(168, 207, 42, 0.6);
}

.lesson-card__content{
  padding: 20px;
}

.lesson-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.4;
}

.lesson-card__description{
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.lesson-card__meta{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 700;
}

.lesson-card__meta svg{
  color: rgba(168, 207, 42, 0.7);
}

.lesson-card__play-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(168, 207, 42, 0.15);
  border: 1px solid rgba(168, 207, 42, 0.3);
  border-radius: 10px;
  color: rgba(168, 207, 42, 0.95);
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s ease;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}

.lesson-card__play-btn:hover{
  background: rgba(168, 207, 42, 0.25);
  border-color: rgba(168, 207, 42, 0.5);
  color: #d5ff4b;
  transform: translateY(-1px);
}

/* Payment Modal */
.payment-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal--active{
  opacity: 1;
  visibility: visible;
}

.payment-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.payment-modal__content{
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background: #062a33;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.payment-modal--active .payment-modal__content{
  transform: scale(1) translateY(0);
}

.payment-modal__close{
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.payment-modal__close:hover{
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 1);
}

.payment-modal__header{
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-modal__title{
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.98);
  text-align: center;
}

.payment-modal__body{
  padding: 24px;
}

.payment-summary{
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.payment-summary__item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.payment-summary__item:last-child{
  margin-bottom: 0;
}

.payment-summary__total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(168, 207, 42, 0.3);
}

.payment-summary__label{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.payment-summary__value{
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.payment-summary__total .payment-summary__value{
  font-size: 20px;
  color: rgba(168, 207, 42, 0.95);
}

.payment-methods{
  margin-bottom: 20px;
}

.payment-methods__title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.payment-method{
  margin-bottom: 12px;
}

.payment-method input[type="radio"]{
  display: none;
}

.payment-method__label{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method input[type="radio"]:checked + .payment-method__label{
  background: rgba(168, 207, 42, 0.1);
  border-color: rgba(168, 207, 42, 0.4);
  color: rgba(168, 207, 42, 0.95);
}

.payment-method__label svg{
  flex-shrink: 0;
}

.payment-method__label span{
  font-weight: 800;
  font-size: 15px;
}

.payment-note{
  padding: 16px;
  background: rgba(168, 207, 42, 0.08);
  border: 1px solid rgba(168, 207, 42, 0.2);
  border-radius: 12px;
}

.payment-note p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.payment-modal__footer{
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.payment-modal__footer .btn{
  min-width: 120px;
}

/* Video Modal */
.video-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal--active{
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.video-modal__content{
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.video-modal--active .video-modal__content{
  transform: scale(1) translateY(0);
}

.video-modal__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.video-modal__close:hover{
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 1);
}

#videoPlayerContainer{
  width: 100%;
  height: 100%;
}

#videoPlayerContainer iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 920px){
  .lessons-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .payment-modal__content{
    width: 95%;
    max-height: 95vh;
  }
  
  .video-modal__content{
    width: 95%;
  }
  
  .payment-modal__footer{
    flex-direction: column;
  }
  
  .payment-modal__footer .btn{
    width: 100%;
  }
}

/* Store Products Grid - Enhanced Design */
.store-products__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  margin-top: clamp(40px, 6vw, 80px);
}

.store-product-card{
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 28, 34, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.store-product-card:hover{
  transform: translateY(-8px);
  border-color: rgba(168, 207, 42, 0.4);
  box-shadow: 0 12px 40px rgba(168, 207, 42, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.store-product-card__link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.store-product-card__image-wrapper{
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.store-product-card__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-product-card:hover .store-product-card__image{
  transform: scale(1.08);
}

.store-product-card__placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(168, 207, 42, 0.4);
}

.store-product-card__placeholder svg{
  width: 80px;
  height: 80px;
}

.store-product-card__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.store-product-card:hover .store-product-card__overlay{
  opacity: 1;
}

.store-product-card__view-btn{
  padding: 12px 24px;
  background: rgba(168, 207, 42, 0.9);
  color: #0a1415;
  font-weight: 900;
  font-size: 14px;
  border-radius: 12px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.store-product-card:hover .store-product-card__view-btn{
  transform: translateY(0);
}

.store-product-card__content{
  padding: 24px;
}

.store-product-card__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.store-product-card__badge{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.store-product-card__badge--type{
  background: rgba(168, 207, 42, 0.2);
  color: rgba(168, 207, 42, 0.95);
  border: 1px solid rgba(168, 207, 42, 0.3);
}

.store-product-card__badge--info{
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.store-product-card__title{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.98);
}

.store-product-card__description{
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  min-height: 48px;
}

.store-product-card__meta{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 700;
}

.store-product-card__meta svg{
  color: rgba(168, 207, 42, 0.7);
}

.store-product-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.store-product-card__price{
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.store-product-card__price-amount{
  font-size: 24px;
  font-weight: 900;
  color: rgba(168, 207, 42, 0.95);
}

.store-product-card__price-currency{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.store-product-card__cta{
  font-size: 13px;
  font-weight: 800;
  color: rgba(168, 207, 42, 0.9);
  transition: color 0.2s ease;
}

.store-product-card:hover .store-product-card__cta{
  color: #d5ff4b;
}

.store-product-card__actions{
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 28, 34, 0.4);
}

.store-product-card__buy-form{
  flex: 1;
}

.store-product-card__buy-btn,
.store-product-card__details-btn{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.store-product-card__buy-btn{
  background: rgba(168, 207, 42, 0.2);
  border: 1px solid rgba(168, 207, 42, 0.4);
  color: rgba(168, 207, 42, 0.95);
}

.store-product-card__buy-btn:hover{
  background: rgba(168, 207, 42, 0.3);
  border-color: rgba(168, 207, 42, 0.6);
  color: #d5ff4b;
  transform: translateY(-1px);
}

.store-product-card__details-btn{
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.store-product-card__details-btn:hover{
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
}

.store-products__empty{
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.store-products__empty svg{
  margin: 0 auto 20px;
  color: rgba(168, 207, 42, 0.4);
}

.store-products__empty p{
  font-size: 18px;
  font-weight: 700;
}

/* Product Detail Page Enhancements */
.product-detail__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-detail__badge{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.product-detail__badge--type{
  background: rgba(168, 207, 42, 0.2);
  color: rgba(168, 207, 42, 0.95);
  border: 1px solid rgba(168, 207, 42, 0.3);
}

.product-detail__badge--category{
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-detail__stats{
  display: flex;
  gap: 24px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.product-detail__stat{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.product-detail__stat svg{
  color: rgba(168, 207, 42, 0.7);
  flex-shrink: 0;
}

.product-detail__stat div{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-detail__stat strong{
  font-size: 20px;
  font-weight: 900;
  color: rgba(168, 207, 42, 0.95);
}

.product-detail__stat span{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.product-detail__price{
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(168, 207, 42, 0.1);
  border: 1px solid rgba(168, 207, 42, 0.2);
  border-radius: 16px;
}

.product-detail__price-label{
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.product-detail__price-amount{
  font-size: 36px;
  font-weight: 900;
  color: rgba(168, 207, 42, 0.95);
}

.product-detail__price-currency{
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.product-detail__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btn--large{
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--secondary{
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn--secondary:hover{
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 1);
}

/* Responsive for Store Products */
@media (max-width: 920px){
  .store-products__grid{
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .product-detail__stats{
    flex-direction: column;
    gap: 16px;
  }
  
  .product-detail__price{
    flex-wrap: wrap;
  }
  
  .product-detail__price-amount{
    font-size: 28px;
  }
}

/* Product Hero Section (for ebook and course pages) */
.product-hero{
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, rgba(7, 16, 18, 0.95) 0%, rgba(5, 28, 34, 0.98) 100%);
}

.product-hero__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.product-hero__media{
  position: sticky;
  top: 120px;
}

.product-hero__cover{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.product-hero__cover--placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: rgba(168, 207, 42, 0.3);
}

.product-hero__image{
  width: 100%;
  height: auto;
  display: block;
}

.product-hero__content{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-hero__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  background: rgba(168, 207, 42, 0.12);
  border: 1px solid rgba(168, 207, 42, 0.25);
  color: rgba(168, 207, 42, 0.95);
}

.product-hero__badge--category{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.product-hero__title{
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.98);
}

.product-hero__description{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.product-hero__stats{
  display: flex;
  gap: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.product-hero__stat{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.product-hero__stat svg{
  color: rgba(168, 207, 42, 0.8);
  flex-shrink: 0;
}

.product-hero__stat strong{
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: rgba(168, 207, 42, 0.95);
}

.product-hero__stat span{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.product-hero__features{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-hero__feature{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.product-hero__feature svg{
  color: rgba(168, 207, 42, 0.7);
  flex-shrink: 0;
}

.product-hero__price{
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(168, 207, 42, 0.1);
  border: 1px solid rgba(168, 207, 42, 0.2);
  border-radius: 16px;
}

.product-hero__price-label{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.product-hero__price-amount{
  font-size: 36px;
  font-weight: 900;
  color: rgba(168, 207, 42, 0.95);
}

.product-hero__price-currency{
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.product-hero__actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Product Details Section */
.product-details{
  padding: clamp(60px, 8vw, 100px) 0;
  background: rgba(5, 28, 34, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-details__content{
  max-width: 800px;
  margin: 0 auto;
}

.product-details__title{
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.98);
}

.product-details__text{
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* All Lessons Section */
.product-all-lessons{
  padding: clamp(60px, 8vw, 100px) 0;
  background: rgba(7, 16, 18, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lessons-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 60px);
}

.lesson-item{
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.lesson-item:hover{
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 207, 42, 0.3);
  transform: translateX(-4px);
}

.lesson-item--free{
  border-color: rgba(168, 207, 42, 0.2);
}

.lesson-item__number{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 207, 42, 0.15);
  color: rgba(168, 207, 42, 0.95);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.lesson-item__content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lesson-item__title{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lesson-item__badge{
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(168, 207, 42, 0.2);
  border: 1px solid rgba(168, 207, 42, 0.4);
  color: rgba(168, 207, 42, 0.95);
  font-size: 12px;
  font-weight: 800;
}

.lesson-item__description{
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.lesson-item__meta{
  display: flex;
  align-items: center;
  gap: 16px;
}

.lesson-item__duration{
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 700;
}

.lesson-item__duration svg{
  color: rgba(168, 207, 42, 0.7);
}

.lesson-item__play-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(168, 207, 42, 0.15);
  border: 1px solid rgba(168, 207, 42, 0.3);
  border-radius: 10px;
  color: rgba(168, 207, 42, 0.95);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lesson-item__play-btn:hover{
  background: rgba(168, 207, 42, 0.25);
  border-color: rgba(168, 207, 42, 0.5);
  color: #d5ff4b;
}

.lesson-item__locked{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* Responsive for Product Pages */
@media (max-width: 920px){
  .product-hero__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-hero__media{
    position: static;
  }
  
  .product-hero__stats{
    flex-direction: column;
    gap: 20px;
  }
  
  .product-hero__actions{
    flex-direction: column;
  }
  
  .product-hero__actions .btn{
    width: 100%;
  }
  
  .lesson-item{
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  
  .lesson-item__play-btn,
  .lesson-item__locked{
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }
}
